'DeclarationPublic Overloads Shared Sub Log( _ ByVal logLevel As LogLevel, _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'UsageDim logLevel As LogLevel Dim exception As Exception Dim message As String Dim args() As Object Utils.Log(logLevel, exception, message, args)
public static void Log( LogLevel logLevel, Exception exception, string message, params object[] args )
public: static void Log( LogLevel logLevel, Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- logLevel
 - Entry will be written on this level.
 - exception
 - The exception to log.
 - message
 - Format string of the log message.
 - args
 - An object array that contains zero or more objects to format.